home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / asmutil / a86v400.zip / READ.ME < prev    next >
Text File  |  1994-12-30  |  4KB  |  85 lines

  1. A86 macro assembler, V4.00                 December 30, 1994
  2. Copyright 1986--1994 Eric Isaacson.
  3. All rights reserved.
  4.  
  5. Eric Isaacson Software       Visa/MC/Amex accepted
  6. 416 E. University Ave.       1-812-339-1811
  7. Bloomington, IN 47401-4739
  8.  
  9. See the text file A01.DOC for permissions/restrictions.
  10.  
  11. This package is a complete assembly-language compiler for the 
  12. IBM-PC, together with a complete manual.  Please upload it to 
  13. bulletin boards, and give it to user groups, computer 
  14. departments in schools, and anyone else you think might be 
  15. interested in writing assembly-language programs for Intel 86-
  16. family microprocessors. 
  17.  
  18. You need to read the manual to use this program -- it's 
  19. just too complex to be self-explanatory.  The file A02.DOC
  20. takes you through a trial demonstration. 
  21.  
  22.  
  23. What's New
  24.  
  25. This is the "official release" of A86 with major new features,
  26. although I made an "unofficial release" (versions V3.7x) with
  27. these features earlier in the year.
  28.  
  29. Let's cover the INCOMPATIBILITIES first, so you will know
  30. where to tweak your existing code: 
  31.  
  32. * Error messages in A86 now have a slightly different format (on 
  33.   their own line with a pointer to the error location). If you 
  34.   have any source code lying around with old-format error 
  35.   messages, get rid of the messages before reassembling with 
  36.   this new version -- this version cannot handle them. 
  37.  
  38. * I have changed the L switch to the G (code Generation) switch 
  39.   to prepare for L becoming a Listing-control switch. I have 
  40.   also changed the X switch to +G16, to prepare for X becoming 
  41.   the XRF control switch.  If you have any batch files or A86 
  42.   environment-flag settings with +L or +X in them, change them 
  43.   to +G for this new version. 
  44.  
  45. * The DATA SEGMENT now has a default ORG value of END; that is, 
  46.   it starts at the end of your program, unless you have an ORG 
  47.   otherwise.  V3.20--V3.22 of A86 outlawed ORGless DATA segments,
  48.   in anticipation of this feature.  Versions before that had a
  49.   default ORG of 0 -- if you have source code written for a 
  50.   pre-V3.20 version of A86, make sure you put ORG 0 at the start
  51.   of the first DATA SEGMENT if it was ORG-less. 
  52.  
  53. Other new features include an INCLUDE directive (Chapter 9), a 
  54. listing facility (Chapters 3 and 13), END operand value (Chapter 
  55. 9), pulling XREF and EXMAC functions into the assembler (Chapter 
  56. 13), operand to EVEN (Chapter 9), the removal of the limit on 
  57. the length of a source file, the removal of most restrictions on 
  58. forward-references within expressions, the ability to ORG in the 
  59. DATA segment and structures to a forward-reference value, the 
  60. REF and DEF operators (Chapter 9), the K numeric base (Chapter 
  61. 10), numeric operands to STOSx and MOVSx (Chapter 5), and macros 
  62. in an A86LIB library (Chapter 13).
  63.  
  64. I also have an A386 assembler and D386 debugger, available only
  65. if you register BOTH A86 and D86.  They cover all instructions
  66. up through the Pentium, although at this writing I do not yet
  67. have 32-bit memory indexing and 32-bit protected-mode segments
  68. implemented.  Chapter 6 of the A86 manual describes all the new
  69. A386 instructions and instruction forms.
  70.  
  71.  
  72. How to Get Everything
  73.  
  74. If you have downloaded the A86Vxxx.ZIP file from a BBS, you need
  75. only make a subdirectory on your hard drive, make that the
  76. current subdirectory, then run the program PKUNZIP or PCUNZIP
  77. followed by the name of the ZIP file.  The program will "unzip"
  78. (decompress) all the files of the package into your subdirectory.
  79.  
  80. There is an associated debugger, in a file D86Vxxx.ZIP, that you
  81. may wish to look for in the same sources from which you received
  82. this A86 package.
  83.  
  84.  
  85.